home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 8 / FM Towns Free Software Collection 8.iso / t_os / artemis / artsrc2 / grpscrn.c < prev    next >
C/C++ Source or Header  |  1994-06-01  |  324b  |  22 lines

  1. /*
  2.     grpscrn.c
  3. */
  4.  
  5. #include <ryosuke.h>
  6.  
  7. extern    char    *EGB_work;
  8.  
  9. void    grp_mode ( int mode )
  10.     {
  11.     EGB_resolution( EGB_work, 0, mode );
  12.     if ( 1 <= mode && mode <= 11 )
  13.         EGB_resolution( EGB_work, 1, mode );
  14.     }
  15.  
  16. void    grp_mode2 ( int mode )
  17.     {
  18.     EGB_resolution( EGB_work, 1, mode );
  19.     }
  20.  
  21. /* end of grpscrn.c */
  22.